home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / man2dvi < prev    next >
Text File  |  2005-10-13  |  409b  |  31 lines

  1. #! /bin/sh
  2. #
  3. # script to format manpages to dvi
  4. # Copyright (c) 1997 Tobias Begalke (tb@lst.de)
  5. #
  6.  
  7. groff="groff -Tdvi -mandoc"
  8.  
  9. if [ ! $# = 1 ]; then
  10.   echo "$0: usage:"
  11.   echo "  $0 [topic] > topic.dvi"
  12.   exit 1
  13. fi
  14.  
  15. location=`man -c -w $1`
  16.  
  17. if [ "$location" = "" ]; then
  18.   exit 1
  19. fi
  20.  
  21. case `file $location` in
  22.   *gzip* )
  23.     zcat $location | $groff  
  24.     ;;
  25.   
  26.   *troff* )
  27.     $groff $location
  28.     ;;
  29. esac
  30.      
  31.